home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
database
/
db3stock
/
lincount.prg
< prev
next >
Wrap
Text File
|
1986-03-31
|
845b
|
44 lines
* -------------------------
* L I N C O U N T . P R G
* -------------------------
If devicetest="P" .and. LC>linemax
overmax=.t.
Ppage=Ppage+1
if Ppage>1
eject
@ 2,70 say "Page "+str(Ppage,3,0)
endif
endif
If devicetest="S" .and. LC>linemax
overmax=.t.
Spage=Spage+1
if Spage<2
LC=4
do while LC<24
@ LC,1 say space(77)
LC=LC+1
enddo
endif
if Spage>1
test="CS"
msg="<C>ontinue with the display or <S>top the display?"
do linprm23
if tz="S"
stopflag=.t.
return
endif
LC=4
do while LC<24
@ LC,1 say space(77)
LC=LC+1
enddo
set color to 15/0
@ 4,69 say "Page "+str(Spage,3,0)
set color to 7/0
LC=5
endif
endif
return